home *** CD-ROM | disk | FTP | other *** search
/ Chip: Internet / Chip Internet.iso / viewer / wecj20 / readme.txt < prev    next >
Text File  |  1995-01-05  |  4KB  |  105 lines

  1. WinECJ 2.0     Fast JPEG decoding for Windows
  2. =============================================
  3.  
  4. WinECJ is a fast JPEG viewer which runs under Windows 3.1.
  5. Requires 256-colours or more display hardware, and Windows should
  6. be running with 256 colours or more.
  7.  
  8. WinECJ consists of two major parts:
  9.     WECJLIB.DLL - A dynamic link library which performs the actual
  10.                   decoding. The current release is 2.0, and is
  11.                   backward compatible with earlier releases (i.e.
  12.                   it will work with LView 3.1, for example).
  13.                   There are two versions of the DLL, the FREE version
  14.                   that comes with this package can be freely
  15.                   distributed for personal use. The FULL version,
  16.                   which can be ordered from Express Compression Labs,
  17.                   has added functionalities.
  18.     WECJ.EXE is the Windows front-end.
  19.  
  20. Other support files include:
  21.     WECJHLP.HLP - Online help for WECJ.EXE.
  22.     ECJAPI.TXT  - Documentation on the API for WECJLIB.DLL. Keen
  23.                   users and developers can easily develop their own
  24.                   front-ends.
  25.     ECJAPI.H    - C header file needed for developing front-ends.
  26.     README.TXT  - This file.
  27.  
  28.  
  29. New Features
  30. ------------
  31. Apart from the various features such as multiple files drag/drop and
  32. slide-show modes which are available in earlier versions, 
  33. major new features of WinECJ 2.0 include
  34.  
  35.     Preview mode - Ultra fast decoding at 1/4th or 1/8th the
  36.                    original picture size. In this mode the OpenFile
  37.                    dialog box stays open, and one can very quickly
  38.                    browse through a long list of JPEG images.
  39.  
  40.     Lossless cropping - Available in the FULL version only, allows
  41.                         one to save a selected part of an image as
  42.                         another JPEG file. The process is LOSSLESS,
  43.                         i.e. the cropped/saved file contains an image
  44.                         which is exactly the same as the retained
  45.                         portion of the original image. This is achieved
  46.                         by performing the cropping operation in the
  47.                         coefficient domain.
  48.  
  49. The Full Version
  50. ----------------
  51. In the FREE version of the DLL, images are rendered using ordered
  52. dithering. The FULL version of the DLL supports Hi-Color and Tru-Color
  53. display hardware. With such hardware dithering is not necessary and
  54. the best possible picture quality can be achieved. Two-pass colour
  55. quantisation and FS-style dithering are also supported in the full
  56. version, the use of which results in better picture quality on
  57. 256-colour display devices. Finally the full version has the added
  58. functionality of lossless cropping.
  59.  
  60. For ordering information on single and multiple user licenses for
  61. the full version of the DLL, Email to
  62.  
  63.    ecl@netcom.com
  64.  
  65. or write to
  66.  
  67.    P.O. Box 7523, Fox Hills station,
  68.    6083 Bristol Pkwy, Culver City,
  69.    CA 90233, USA.
  70.  
  71.  
  72. Disclaimer
  73. ----------
  74. Copyright 1993, 1994, 1995 Express Compression Labs. All rights reserved.
  75.  
  76. This package which contains the free version of the DLL can be distributed
  77. freely in its entirety for private use. This software is provided 'AS IS'.
  78. ECL and the authors accept no responsibility for any damages arising from
  79. its use.
  80.  
  81.  
  82. Development Support
  83. -------------------
  84. The DLL is very easy to use. As an example the following
  85. Visual Basic code loads and displays a JPEG file and saves it
  86. as a BMP file.
  87.  
  88.       hDib% = ECJ_Decode("abc.jpg", 5, 0&, 0&)
  89.       dum% = OpenClipboard(hWnd)
  90.       dum% = SetClipboardData(8, hDib%)
  91.       dum% = CloseClipboard()
  92.       picture1.Picture = clipboard.GetData(8)
  93.       SavePicture picture1.Picture, "abc.bmp"
  94.  
  95. For more information contact ECL for the C/VB development kit.
  96.  
  97. ---------------------------------------------------------------------
  98. Express Compression Laboratories
  99. =====================================================================
  100. P.O. Box 7523, Fox Hills station   |    PO Box 367, Caulfield East
  101. 6083 Bristol Pkwy, Culver City     |    Vic 3145, Australia.
  102. CA 90233, USA.                     |
  103. =====================================================================
  104. Email: ecl@netcom.com
  105.